과정에 담긴 가치의 증강

  • 1970-01-01
  • 저자: AK

과정에 담긴 가치를 증강하기.

자동화로 인한 가치의 훼손

위키 가드닝을 할 때 LLM이 관련 글 링크를 자동으로 걸어주면 좋을까? 장점보다 단점이 많다고 본다. 예를 들어 위키에 글을 쓰면서 기존에 있던 관련 페이지를 애써 회상하고 수작업으로 링크를 걸어주는 행위는 일종의 능동적 회상 테스팅으로 작용한다. 이걸 LLM이 자동으로 해주면 순간적 편의를 얻는 대신 기억력을 향상시킬 기회를 잃게 된다.

과도한 자동화과정에 담긴 가치를 훼손할 수 있다.

과정에 담긴 가치를 유지하려면 자동화를 하지 않아야 하나? 자동화를 하면서도 과정에 담긴 가치를 유지하거나 오히려 증가시킬 수 있을까?

자동화를 통한 가치의 증강

현재(2025년 8월 21일 기준) 내 위키의 품질 관리를 위한 정량 목표는 그래프의 평균 최단 경로를 줄이는거다. 그래프 G의 평균 최단 경로 L은 모든 가능한 두 노드 쌍에 대한 최단 경로의 산술평균이다. (n은 전체 노드의 수. 참고로 이 지표를 쓸 수 있는 이유는 위키에 외톨이 문서나 외딴 섬이 없어서 임의의 두 노드 사이에 경로가 항상 존재하는 게 보장되기 때문)

L(G)=1n(n1)u,vV,uvd(u,v)L(G) = \frac{1}{n(n-1)} \sum_{u,v \in V, u \neq v} d(u, v)

위키 관리를 위해 만들어둔 스크립트를 실행하면 아래와 같이 가장 긴 최단 경로의 사례를 보여준다.

> uv run wiki.py avg-shortestpath --verbose

Approximating average shortest path length on the largest connected component (8042 nodes) using 500 samples...

Average shortest path length (estimated): 4.9780

Longer than average path 1 (length: 32):
  ## 1. 35th century BCE## 2. 34th century BCE
  ↓
  (중략)
  ↓
  ## 3. Lycurgus
  [[9th century BCE|기원전 9세기]] 경의 전설상의 인물. [[Sparta|스파르타]]의 법제를 만들었다고 함
  ↓
  ## 29. What is history
  Chapter 1. 역사가와 그의 사실
  ↓
  ## 30. Books Ive read
  내가 읽은 책들.
  ↓
  ## 31. The science of addiction
  [[Addiction|중독]]에 대한 [[Neuroscience|신경과학]]적 연구.
  ↓
  ## 32. A flexible hippocampal population code for experience relative to reward
  New findings suggest the same brain systems that guide animals to rewards may be weakened in [[Dementia|dementia]] and intensified in ...

이 정보를 LLM에게 주고 “경로를 단축하기 위해 내가 공부할만한 주제가 무엇인지 알려달라”고 지시하면 이런 힌트를 얻을 수 있다:

Suggestion: Self-Control and State Control

This topic explores the tension between individual self-control and the state’s role in enforcing it.

  • How it connects to Lycurgus: His entire legal system for Sparta was an extreme form of state-enforced discipline. It was designed to subordinate individual desires (for luxury, comfort, family) to the needs of the state, thereby engineering a society of ultimate self-control and austerity.
  • How it connects to Addiction Science: The science of addiction studies the biological failure of self-control. It examines how brain chemistry can override rational decision-making. This often leads to debates about the state’s role in managing addiction through laws, healthcare, and public policy.
  • The Bridge: The note would contrast the ancient method of shaping behavior through rigid social structure with the modern understanding of behavior as a function of neurochemistry.

LLM을 리버스 사전 탐색 알고리즘으로 활용하여 힌트를 얻고, 이 중에서 공부할만한 내용을 찾아보고 공부한 내용을 위키에 추가하면서 서로 멀리 떨어져있던 두 문서를 직접 연결하는 경로를 추가할 수 있다.

이런 식의 자동화는 내가 이미 알고 있는 지식이지만 서로 멀리 떨어져 있었던 두 개념을 연결하기 위해 어떤 공부를 새롭게 하면 좋을지 발견하는 걸 도와주고(위키에서 거리가 멀면 실제로 내 머리 속에서도 두 개념이 서로 잘 연결되어 있지 않을 가능성이 높다), 실제로 내가 공부를 해서 해당 문서를 만들도록 유도한다는 점에서 유익한 자동화라고 생각한다.